From: Ken Raeburn Date: Tue, 16 Jul 2002 15:49:44 +0000 (+0000) Subject: * macfns.c (validate_x_resource_name): Use SSET. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~56178 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=96fb177ac64287947330a99ebeb345ab8aad2ebe;p=emacs.git * macfns.c (validate_x_resource_name): Use SSET. --- diff --git a/src/macfns.c b/src/macfns.c index 04cedba11dc..2b3ed8ae977 100644 --- a/src/macfns.c +++ b/src/macfns.c @@ -3114,7 +3114,7 @@ validate_x_resource_name () || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '-' || c == '_')) - SREF (new, i) = '_'; + SSET (new, i, '_'); } }